home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / rsynth / src / proto.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-02  |  227 b   |  15 lines

  1. #ifndef PROTO
  2. #if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
  3. #define PROTO(ARGS) ARGS
  4. #else
  5. #define PROTO(ARGS) ()
  6. #endif
  7. #ifndef __STDC__
  8. #define const
  9. #endif
  10. #ifndef __GNUC__
  11. #define inline
  12. #endif
  13. #endif
  14.  
  15.